encoding/hex.decoder.err (field)
8 uses
encoding/hex (current package)
hex.go#L177: err error
hex.go#L190: if len(d.in) < 2 && d.err == nil {
hex.go#L193: numRead, d.err = d.r.Read(d.arr[numCopy:])
hex.go#L195: if d.err == io.EOF && len(d.in)%2 != 0 {
hex.go#L198: d.err = InvalidByteError(d.in[len(d.in)-1])
hex.go#L200: d.err = io.ErrUnexpectedEOF
hex.go#L212: d.in, d.err = nil, err // Decode error; discard input remainder
hex.go#L216: return numDec, d.err // Only expose errors when buffer fully consumed
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |